+Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
+ if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
+
2001-11-12 Matthias Clasen <matthiasc@poet.de>
* gtk/gtktreeview.c: Documentation fixes. (#64377)
+Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
+ if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
+
2001-11-12 Matthias Clasen <matthiasc@poet.de>
* gtk/gtktreeview.c: Documentation fixes. (#64377)
+Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
+ if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
+
2001-11-12 Matthias Clasen <matthiasc@poet.de>
* gtk/gtktreeview.c: Documentation fixes. (#64377)
+Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
+ if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
+
2001-11-12 Matthias Clasen <matthiasc@poet.de>
* gtk/gtktreeview.c: Documentation fixes. (#64377)
+Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
+ if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
+
2001-11-12 Matthias Clasen <matthiasc@poet.de>
* gtk/gtktreeview.c: Documentation fixes. (#64377)
+Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
+ if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
+
2001-11-12 Matthias Clasen <matthiasc@poet.de>
* gtk/gtktreeview.c: Documentation fixes. (#64377)
+Mon Nov 12 19:33:52 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
+ if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
+
2001-11-12 Matthias Clasen <matthiasc@poet.de>
* gtk/gtktreeview.c: Documentation fixes. (#64377)
widget = GTK_WIDGET (gtk_type_new (GTK_TYPE_MESSAGE_DIALOG));
dialog = GTK_DIALOG (widget);
+ if (flags & GTK_DIALOG_NO_SEPARATOR)
+ {
+ g_warning ("The GTK_DIALOG_NO_SEPARATOR flag cannot be used for GtkMessageDialog");
+ flags &= ~GTK_DIALOG_NO_SEPARATOR;
+ }
+
if (message_format)
{
va_start (args, message_format);